home *** CD-ROM | disk | FTP | other *** search
- ADDITIONAL INFO
- NOTE: THE CODE USES VARIABLES THAT START WITH "S.", EG.,"S.TMP%". YOUR
- CODE SHOULD NOT USE ANY SUCH VARIABLE, EXCEPT TO COMMUNICATE WITH THE
- PROGRAM.
-
- DATA STATEMENTS ARE CONSTRUCTED AS FOLLOWS:
- 60000 DATA a,b,c,d,e,f,g,h,i
- a-is the X coordinate on the screen where the prompt
- should appear. It should be a value from 2 to 79.
- b-is the Y coordinate of where the prompt should appear.
- This value should be from 3 to 22. In the
- initialization logic is a variable S.BOT% that
- indicates the last line on the screen that should be
- used. If b is set to a negative value, it is used as
- an offset from the bottom of the screen. For
- instance, if S.BOT%=24, and b=-9, then the routine
- will use line 15 (24 - 9=15).
- c-is the length of the input. It should range from 1
- to 80. The resultant output will se set with either
- leading or training spaces a length equal to c.
- d-is the editing flag. This is the most complicated
- part of the data statement to set up. Because of the
- problem that some people have with the flag, the
- software accepts two different modes of setting the
- the flags - use which ever one is easier for you.
-
- In the first mode, the flag consists of a number ranging
- from 0 to 32767. It is created by adding together the
- values listed below next to "bit" for each editing test
- to be done. For instance, if you wanted the input to be
- a string of characters (alpha/numeric) that completely
- fills an input field and converts any lowercase input
- to uppercase, then the input flag would be 2048 (full
- input) + 16 (upper case conversion) for a total of
- 2064. Obviously, certain flags are illogical if used
- together, and will result in inpredictable actions.
-
- In the second mode, the input flag field in the data
- statement can be constructed with an exclamation point
- (!) followed by a swries of "1" and "0", such as:
- !000010011
- This would mean that the first 4 editing tests would not
- be used, the fifth would be on (conversion to uppercase)
- would be enabled, the next two would not be used, and
- the next two would.
- The editing flags are:
- bit 1 Not used
- bit 2 Not used
- bit 4 Not used
- bit 8 Not used
- bit 16 Convert entered text to uppercase
- Any lowercase alpha characters entered will be
- converted to uppercase automatically.
- bit 32 Erase field after input is completed
- After a field has been processed, the field and
- the data entered will be erased from the screen.
- bit 64 Accept only Function keys (S.LR$ through S.HR$)
- You want the user to press F1 through F9 only.
- No other keys (besides F10 for HELP, and ESC)
- may be pressed. In the data statement, field
- #f would contain the lowest allowed Function
- key and field #g would have the highest. These
- are entered in the form of:
- DATA a,b,c,d,e,F1,F7,h
- if the allowed input is from F1 through F7.
- bit 128 Accept only interger value (leading "-" allowed)
- Accept numeric input without a decimal.
- bit 256 Accept a dollar type vaule with 1 decimal allowed
- Accept numeric input with a decimal allowed.
- The routine will automatically format the
- input to the form of: 9.99
- bit 512 Accept input with range limited to S.LR$ and S.HR$
- The input must be within the range specified in
- fields #f and #g. The range test can be used
- with both numeric and alpha input- i.e. for
- input between 1 and 5, or between A and C.
- bit 1024 At least 1 character must be entered (not blank)
- Self explanatory.
- bit 2048 Input must be filled (i.e.-cant press RETURN))
- Self explanatory.
- bit 4096 Input must be one of fields in S.LR$
- To force the user to enter only specific data,
- such as "Y" or "N", this test can be used. The
- #f field sould contain the valid possibilities
- such as "Y","N", etc. seperated by some
- character specified in field #g. For example:
- DATA a,b,c,d,e,Y/N/?/,/,h
- Notice that the choices were seperated by a "/"
- and that character appears in field #g. Be sure
- that the sperator follows the last choice.
- bit 8192 Input must be valid date in MMDDYY format
- The data to be entered will be validated as a
- date. It must be a 6 digit entry in the form
- of MMDDYY. No leap year tests are performed.
- The data returned to you in S.INPUT$ and
- S.DA$(FI%) will be in MMDDYY format, but the
- data will be redisplayed as MM/DD/YY on the
- screen.
- bit 16384 Display prompt only-accept no input
- The input prompt and any data in S.DA$(FI%)
- will be displayed, but no input will be done.
- This can be used to display information on the
- screen.
- e This is the prompt to be displayed on the screen, such
- as "Enter Date:"
- f&g These two fields have varied functions depending upon
- the input validation tests chosen for that field. See
- field #e above for more information.
- h This is the default field. If any data is placed here,
- the system will display the default in the input field
- when the prompt is displayed. Pressing RETURN will be
- the equivalent of having entered the data. Of course,
- the user may enter any information to over-ride the
- default. Be sure that your default conforms to all
- editing tests to be performed on the field.
- i This field should contain an extra HELP message.
- If the user press F10, then this message will be
- displayed at the bottom of the screen.
-
- ADDITIONAL FEATURES:
-
- 1. MAKESCREEN also provides the oportunity to display information
- on the screen without accepting input. For example, in a file-
- maintenance program, you might want to display the current data
- in the file, then allow the user to update specific fields. To
- do this, you must read the data from your file, parse it (that
- means extract each field of data from the record individually)
- and put each of the fields into the proper S.DA$() variables.
- Then set FI% to the negative value of the field number and
- GOSUB 40000. For example, for field #6:
- FI%=-6: GOSUB 40000
- This instructs the program to display both the prompt and your
- parsed data on the screen for field #6. At a later time, you
- may revert to the normal technique (FI%=6) to alter the
- displayed information.
-
- 2. Another option is to set the parsed information into the default
- field with:
- [LET] S.DEF$(FI%)=S.DA$(FI%)
- prior to accepting input for the field. This will allow the
- operator to simply press <ENTER> if he/she wished to maintain
- the current information, or to type in different data if it is
- to be changed.